home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2000 September / maximum-cd-2000-09.iso / Vampire the Masquerade / vampire_demo.exe / Codex.nob / EffectDiscEarthMeld.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-22  |  2.4 KB  |  63 lines

  1. public class EffectDiscEarthMeld extends Codex {
  2.    float[] vecScale = new float[3];
  3.    int _targetGuid;
  4.    int _effectGuid;
  5.  
  6.    public void actorunstill(int actorGuid, int captureID) {
  7.       CodexActor _Actor = new CodexActor(this._targetGuid);
  8.       _Actor.RemoveActorEffect(this._effectGuid);
  9.    }
  10.  
  11.    public void EndEffect() {
  12.       ((Codex)this).KillAllTimers();
  13.       this.vecScale[0] = 1.0F;
  14.       this.vecScale[1] = 1.0F;
  15.       this.vecScale[2] = 1.0F;
  16.       CodexActor _Actor = new CodexActor(this._targetGuid);
  17.       _Actor.RemoveActorEffect("ef_disc_earthmeld2");
  18.       _Actor.RemoveActorEffect("ef_disc_earthmeld3");
  19.       ((CodexThing)_Actor).SetScale(this.vecScale, 1.0F);
  20.       ((CodexThing)_Actor).UnfreezeAnimations();
  21.       ((CodexThing)_Actor).EndShell();
  22.       _Actor.ClearActorFlags(4456457);
  23.    }
  24.  
  25.    public void restore(int flags) {
  26.       this._targetGuid = CodexSequence.RestoreInt();
  27.       this._effectGuid = CodexSequence.RestoreInt();
  28.    }
  29.  
  30.    public void effectstarted(int actorGuid, int effectGuid, int creatorGuid, int duration) {
  31.       this._effectGuid = effectGuid;
  32.       this._targetGuid = actorGuid;
  33.       CodexActor _Actor = new CodexActor(this._targetGuid);
  34.       ((Codex)this).CaptureThing(actorGuid);
  35.       _Actor.SetActorFlags(4456457);
  36.       this.vecScale[0] = 1.0F;
  37.       this.vecScale[1] = 1.0F;
  38.       this.vecScale[2] = 0.01F;
  39.       ((CodexThing)_Actor).SetScale(this.vecScale, 1.0F);
  40.       ((CodexThing)_Actor).SetShell(((CodexThing)_Actor).GetSurfaceMaterial(), 128, 0.99F, 1.0F, 5.0F, 1.0F);
  41.       ((Codex)this).SetTimer(0.01F);
  42.    }
  43.  
  44.    public void killed(int guid, int causeID, int captureID) {
  45.       this.EndEffect();
  46.    }
  47.  
  48.    public void save(int flags) {
  49.       CodexSequence.SaveInt(this._targetGuid);
  50.       CodexSequence.SaveInt(this._effectGuid);
  51.    }
  52.  
  53.    public void timer(int timerID, float arg0, float arg1, float arg2, float arg3) {
  54.       CodexActor _Actor = new CodexActor(this._targetGuid);
  55.       _Actor.ActorStill();
  56.       ((CodexThing)_Actor).FreezeAnimations();
  57.    }
  58.  
  59.    public void effectended(int actorGuid, int effectGuid, int creatorGuid, int reason) {
  60.       this.EndEffect();
  61.    }
  62. }
  63.